home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’93 / String Extractor⁄Localization / Scanner / h+utils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-18  |  1.5 KB  |  57 lines  |  [TEXT/KAHL]

  1. /*    © 1993 Jon Wätte, Stockholm
  2.  *
  3.  *    This is unpublished proprietary source code, and may not be used,
  4.  *    released, copied, stored in a retrieval system, modified or shown
  5.  *    to anyone else without the copyright holders’ prior written
  6.  *    permission.
  7.  *
  8.  *    Denna källkod skyddas av upphovsrätt, och klassas som opublicerat
  9.  *    hemligt material. Ingen användning, kopiering, avskrivning,
  10.  *    vidarebefodring, ändring eller publicering av denna källkod eller
  11.  *    del härav får ske utan att skriftligt tillstånd först erhållits från
  12.  *    upphovsrättsinnehavaren.
  13.  */
  14.  
  15. /*
  16.  * h+utils.h
  17.  *
  18.  * Headers for simple utilities
  19.  */
  20.  
  21. #ifndef _H_h_utils
  22. # define _H_h_utils
  23.  
  24. #if __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. extern char * cstrcpy ( char * dst , char * src ) ;
  29.  
  30. extern void DisplayPictureTimeout ( PicHandle pict , short windowID , long timeOutTicks ,
  31.     Point textWhere , short justification , unsigned char * text , short font , short size ,
  32.     short transferMode ) ;
  33.  
  34. #define BlockClear(b) _BlockClear(&(b),sizeof(b))
  35. extern void _BlockClear ( void * ptr , long size ) ;
  36.  
  37. extern short GetTempFSS ( const FSSpec * oldFile , FSSpec * tempFile ) ;
  38.  
  39. /* Make a 3D border of the region, within the region */
  40. extern void SlateRgn ( RgnHandle rgn , RGBColor median ) ;
  41.  
  42. extern short PixelDepth ( GDHandle gd ) ;
  43.  
  44. extern pascal void FrameItem ( DialogPtr dp , short item ) ;
  45.  
  46. extern void ConcatPStrings ( unsigned char * dest , const unsigned char * from ) ;
  47.  
  48. extern void CopyPString ( const unsigned char * from , unsigned char * to ) ;
  49.  
  50. #if __cplusplus
  51. } ;
  52. #endif
  53.  
  54.  
  55. #endif
  56.  
  57.